home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / string / stpcpy.doc < prev    next >
Encoding:
Text File  |  1995-04-11  |  499 b   |  24 lines

  1. MyLib/stpcpy                                                      MyLib/stpcpy
  2.  
  3.     NAME
  4.     stpcpy - copy a string
  5.  
  6.     SYNOPSIS
  7.     #include <string.h>
  8.  
  9.     char *stpcpy(char *Destination, const char *Source);
  10.  
  11.     FUNCTION
  12.     This function copies a string from Source to Dest.
  13.  
  14.     INPUTS
  15.     Dest - pointer to the destination area
  16.     Source - pointer to the source string
  17.  
  18.     RESULT
  19.     A pointer to the end of the copied string is returned, i.e.
  20.     a pointer to the terminating '\0' of Dest.
  21.  
  22.     SEE ALSO
  23.     strcpy
  24.